home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / ISTACK.cls < prev    next >
Text File  |  1997-06-14  |  445b  |  23 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "IStack"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = True
  8. Attribute VB_TemplateDerived = False
  9. Attribute VB_PredeclaredId = False
  10. Attribute VB_Exposed = False
  11. Option Explicit
  12.  
  13. ' IStack interface class
  14. Public Sub Push(vArg As Variant)
  15. End Sub
  16.  
  17. Public Function Pop() As Variant
  18. End Function
  19.  
  20. Property Get Count() As Long
  21. End Property
  22. '
  23.